home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / alien-glow-bar.scm < prev    next >
Text File  |  2009-12-15  |  4KB  |  101 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Alien Glow themed hrule for web pages
  5. ; Copyright (c) 1997 Adrian Likins
  6. ; aklikins@eos.ncsu.edu
  7. ;
  8. ;
  9. ; This program is free software; you can redistribute it and/or modify
  10. ; it under the terms of the GNU General Public License as published by
  11. ; the Free Software Foundation; either version 2 of the License, or
  12. ; (at your option) any later version.
  13. ;
  14. ; This program is distributed in the hope that it will be useful,
  15. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. ; GNU General Public License for more details.
  18. ;
  19. ; You should have received a copy of the GNU General Public License
  20. ; along with this program; if not, write to the Free Software
  21. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  
  23. (define (script-fu-alien-glow-horizontal-ruler length
  24.                                                height
  25.                                                glow-color
  26.                                                bg-color
  27.                                                flatten)
  28.   (let* (
  29.         (img (car (gimp-image-new height length RGB)))
  30.         (border (/ height 4))
  31.         (ruler-layer (car (gimp-layer-new img
  32.                                           (+ length height) (+ height height)
  33.                                           RGBA-IMAGE "Ruler" 100 NORMAL-MODE)))
  34.         (glow-layer (car (gimp-layer-new img
  35.                                          (+ length height) (+ height height)
  36.                                          RGBA-IMAGE "Alien Glow" 100 NORMAL-MODE)))
  37.         (bg-layer (car (gimp-layer-new img
  38.                                        (+ length height) (+ height height)
  39.                                        RGB-IMAGE "Background" 100 NORMAL-MODE)))
  40.         )
  41.  
  42.     (gimp-context-push)
  43.  
  44.     (gimp-image-undo-disable img)
  45.     (gimp-image-resize img (+ length height) (+ height height) 0 0)
  46.     (gimp-image-add-layer img bg-layer 1)
  47.     (gimp-image-add-layer img glow-layer -1)
  48.     (gimp-image-add-layer img ruler-layer -1)
  49.  
  50.    ; (gimp-layer-set-lock-alpha ruler-layer TRUE)
  51.     (gimp-context-set-background bg-color)
  52.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  53.     (gimp-edit-clear glow-layer)
  54.     (gimp-edit-clear ruler-layer)
  55.  
  56.     (gimp-rect-select img
  57.                       (/ height 2) (/ height 2)
  58.                       length height CHANNEL-OP-REPLACE FALSE 0)
  59.     (gimp-context-set-foreground '(79 79 79))
  60.     (gimp-context-set-background '(0 0 0))
  61.  
  62.     (gimp-edit-blend ruler-layer FG-BG-RGB-MODE NORMAL-MODE
  63.                      GRADIENT-SHAPEBURST-ANGULAR 100 0 REPEAT-NONE FALSE
  64.                      FALSE 0 0 TRUE
  65.                      0 0 height height)
  66.  
  67.     (gimp-context-set-foreground glow-color)
  68.     (gimp-selection-grow img border)
  69.     (gimp-edit-fill glow-layer FOREGROUND-FILL)
  70.     (gimp-selection-none img)
  71.     (plug-in-gauss-rle RUN-NONINTERACTIVE img glow-layer 25 TRUE TRUE)
  72.  
  73.     (gimp-image-undo-enable img)
  74.  
  75.     (if (= flatten TRUE)
  76.         (gimp-image-flatten img))
  77.  
  78.     (gimp-display-new img)
  79.  
  80.     (gimp-context-pop)
  81.   )
  82. )
  83.  
  84.  
  85. (script-fu-register "script-fu-alien-glow-horizontal-ruler"
  86.     _"_Hrule..."
  87.     _"Create an Hrule graphic with an eerie glow for web pages"
  88.     "Adrian Likins"
  89.     "Adrian Likins"
  90.     "1997"
  91.     ""
  92.     SF-ADJUSTMENT _"Bar length"       '(480 5 1500 1 10 0 1)
  93.     SF-ADJUSTMENT _"Bar height"       '(16 1 100 1 10 0 1)
  94.     SF-COLOR      _"Glow color"       '(63 252 0)
  95.     SF-COLOR      _"Background color" "black"
  96.     SF-TOGGLE     _"Flatten image"    TRUE
  97. )
  98.  
  99. (script-fu-menu-register "script-fu-alien-glow-horizontal-ruler"
  100.                          "<Image>/File/Create/Web Page Themes/Alien Glow")
  101.